home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / core / IRepeater.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  807 b   |  33 lines

  1. package mx.core
  2. {
  3.    public interface IRepeater
  4.    {
  5.       function get container() : Container;
  6.       
  7.       function set recycleChildren(param1:Boolean) : void;
  8.       
  9.       function get startingIndex() : int;
  10.       
  11.       function set startingIndex(param1:int) : void;
  12.       
  13.       function get currentItem() : Object;
  14.       
  15.       function get count() : int;
  16.       
  17.       function get recycleChildren() : Boolean;
  18.       
  19.       function executeChildBindings() : void;
  20.       
  21.       function set dataProvider(param1:Object) : void;
  22.       
  23.       function initializeRepeater(param1:Container, param2:Boolean) : void;
  24.       
  25.       function get currentIndex() : int;
  26.       
  27.       function get dataProvider() : Object;
  28.       
  29.       function set count(param1:int) : void;
  30.    }
  31. }
  32.  
  33.